home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / program / gtld3656.lha / GadUtil / Docs / AutoDocs / 42.GU_ReplyIMsg < prev    next >
Text File  |  1995-06-18  |  1KB  |  33 lines

  1. gadutil.library/GU_ReplyIMsg                     gadutil.library/GU_ReplyIMsg
  2.  
  3.    NAME
  4.     GU_ReplyIMsg -- Reply a message obtained with GU_GetIMsg().
  5.  
  6.    SYNOPSIS
  7.     GU_ReplyIMsg(imsg)
  8.                  A1
  9.  
  10.     VOID GU_ReplyIMsg(struct IntuiMessage *);
  11.  
  12.    FUNCTION
  13.     Return a modified IntuiMessage obtained with GU_GetIMsg(). If you
  14.     use GU_GetIMsg(), use this function where you would normally have
  15.     used exec/ReplyIMsg() or gadtools/GT_ReplyIMsg(). You may safely
  16.     call this function with a NULL pointer (nothing will be done).
  17.  
  18.    INPUTS
  19.     imsg - a modified IntuiMessage obtained with GT_GetIMsg(), or NULL
  20.            in which case this function does nothing.
  21.  
  22.    NOTES
  23.     When using GadUtil, you MUST explicitly GU_ReplyIMsg() all messages
  24.     you receive. You cannot depend on CloseWindow() to handle messages
  25.     you have not replied.
  26.  
  27.     Starting with V39, this function actually expects a pointer to an
  28.     ExtIntuiMessage structure, but the prototype was not changed for
  29.     source code compatibility with older software.
  30.  
  31.    SEE ALSO
  32.     GU_GetIMsg()
  33.